.profile-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 30px;
    color: #e5d7ff;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Varela Round', 'Rubik', sans-serif;
    letter-spacing: 1px;
    text-shadow: 
        0 0 5px rgba(236, 172, 127, 0.3),
        0 0 10px rgba(236, 172, 127, 0.2),
        0 0 20px rgba(236, 172, 127, 0.1);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 5px rgba(236, 172, 127, 0.3),
            0 0 10px rgba(236, 172, 127, 0.2),
            0 0 20px rgba(236, 172, 127, 0.1);
    }
    to {
        text-shadow: 
            0 0 10px rgba(236, 172, 127, 0.4),
            0 0 20px rgba(236, 172, 127, 0.3),
            0 0 30px rgba(236, 172, 127, 0.2),
            0 0 40px rgba(236, 172, 127, 0.1);
    }
}

.profile-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 5px;
    background-color: #ecac7f;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(236, 172, 127, 0.5);
}

.carousel-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.profile-selection {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-top: 50px;
    padding: 20px 0;
    scrollbar-width: none; /* מסתיר את פס הגלילה בפיירפוקס */
}

/* מסתיר את פס הגלילה בכרום וספארי */
.profile-selection::-webkit-scrollbar {
    display: none;
}

.circle {
    width: 30vh;
    height: 30vh;
    border-radius: 65% 35% 65% 35% / 35% 33% 67% 65%;
    overflow: hidden;
    margin: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, border 0.3s, border-radius 0.5s;
    background-color: #f0f0f0;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle:hover {
    transform: scale(1.1);
    border: 2px solid #ccc;
    border-radius: 52% 48% 56% 44% / 43% 12% 88% 57% ;
}

.circle_button:checked + .circle {
    border: 3px solid #ecac7f;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(236, 172, 127, 0.5);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    padding: 12px 30px;
    font-size: 18px;
    font-family: 'Varela Round', 'Rubik', sans-serif;
    font-weight: 600;
    background-color: #ecac7f;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-button svg {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background-color: #e5946a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-button:hover svg {
    transform: translateX(-5px);
}

.submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* התאמה למסכים קטנים */
@media (max-width: 768px) {
    .profile-title {
        font-size: 2rem;
    }
    
    .circle {
        width: 20vh;
        height: 20vh;
        margin: 0 10px;
    }
} 